2008-06-19 Johan Dahlin <jdahlin@async.com.br>
* gtk/gtkhsv.c (paint_ring, paint_triangle):
Cast buf to unsigned char to avoid two compiler
warnings.
svn path=/trunk/; revision=20470
2008-06-19 Johan Dahlin <jdahlin@async.com.br>
+ * gtk/gtkhsv.c (paint_ring, paint_triangle):
+ Cast buf to unsigned char to avoid two compiler
+ warnings.
+
* gtk/gtkclist.c:
* gtk/gtkstyle.c (gtk_style_finalize):
Do not ignore the return value of g_slist_remove.
}
}
- source = cairo_image_surface_create_for_data ((char *)buf,
+ source = cairo_image_surface_create_for_data ((unsigned char *)buf,
CAIRO_FORMAT_RGB24,
width, height, stride);
}
}
- source = cairo_image_surface_create_for_data ((char *)buf,
+ source = cairo_image_surface_create_for_data ((unsigned char *)buf,
CAIRO_FORMAT_RGB24,
width, height, stride);